| Package | Description |
|---|---|
| edu.claflin.finder |
Subgraph Finder - Used to find and locate subgraphs within a network.
|
| edu.claflin.finder.log |
Contains the classes used by the programming for logging
to a file.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Global.makeLogger(LogLevel maxGranularity,
boolean[] fileLogs,
boolean[] terminalLogs)
Instantiates the logger field.
|
| Modifier and Type | Field and Description |
|---|---|
private LogLevel |
LogUtil.maxGranularity
The maximum granularity of the logging utility.
|
| Modifier and Type | Method and Description |
|---|---|
static LogLevel |
LogLevel.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogLevel[] |
LogLevel.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
private void |
LogUtil.log(LogType type,
LogLevel granularity,
java.lang.String detail)
Used to log data.
|
void |
LogUtil.logAlgo(LogLevel level,
java.lang.String detail)
Logs an ALGO message.
|
void |
LogUtil.logError(LogLevel level,
java.lang.String detail)
Logs an ERROR message.
|
void |
LogUtil.logGraph(LogLevel level,
java.lang.String detail)
Logs a GRPH message.
|
void |
LogUtil.logInfo(LogLevel level,
java.lang.String detail)
Logs an INFO message.
|
| Constructor and Description |
|---|
LogUtil(LogLevel maxGranularity,
boolean logToTerminal)
Constructs the logging utility.
|
LogUtil(LogLevel maxGranularity,
boolean[] fileLogs,
boolean[] terminalLogs)
Constructs the logging utility.
|